configuration / network / interfaces / vif[ID] / ipv6

CLI REST-API

ip-address

tcp/IP address
This is a read-write object and valid values are IPv6-addresses.

Datatype-Help:
the ipv6-address should looks like this: AAAA:BBBB:CCCC:DDDD:EEEE:FFFF:GGGG:HHHH/I
letters A - H are hex-digits.
valid hex-digits are: 0-9 and a-f.
letter I is a decimal number that goes from 0 to 128 and is a subnetmask.
example: 2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64



See also:
/configuration/network/interfaces/vif[ID]/ipv6
/configuration/network/interfaces/vif[ID]/ipv6/enable-dhcp
/configuration/network/interfaces/vif[ID]/ipv6/dhcp-client-id

REST-API Support:


This object is supported by the REST API:

Method: GET
URL: /api/configuration/network/interfaces/vif.*/ipv6


Example using curl:
curl /api/configuration/network/interfaces/vif.*/ipv6


Method: PATCH
URL: /api/configuration/network/interfaces/vif.*/ipv6
Body:
{
  "ip-address": "::"
}

Example using curl:
curl -X PATCH /api/configuration/network/interfaces/vif.*/ipv6 -d
{
  "ip-address": "::"
}